home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Precision Software Appli…tions Silver Collection 4
/
Precision Software Applications Silver Collection Volume 4 (1993).iso
/
database
/
ddf601.exe
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-05-01
|
2KB
|
87 lines
ECHO OFF
CLS
IF /%1 == / GOTO ERROR
IF %1 == A: GOTO FLOPPY
IF %1 == a: GOTO FLOPPY
IF %1 == B: GOTO FLOPPY
IF %1 == b: GOTO FLOPPY
IF %1 == C: GOTO HARD
IF %1 == c: GOTO HARD
IF %1 == D: GOTO HARD
IF %1 == d: GOTO HARD
IF %1 == E: GOTO HARD
IF %1 == e: GOTO HARD
IF %1 == F: GOTO HARD
IF %1 == f: GOTO HARD
GOTO ERROR
:FLOPPY
ECHO If you are installing to 5 1/4" disks, you will need
ECHO three BLANK FORMATTED NON-SYSTEM disks. If you are
ECHO installing to 3 1/2" disks, you may use only one disk.
ECHO .
ECHO Press Ctrl-C to abort or insert disk in %1 drive.
ECHO .
PAUSE
CLS
ECHO Label this disk "PROGRAM DISK" when finished.
ECHO .
DDFILE6 %1
ECHO .
ECHO Insert the second disk in %1 drive or press Ctrl-C to abort.
PAUSE
CLS
ECHO Label this disk "DATA DISK" when finished.
ECHO .
SAMPLE %1
ECHO .
ECHO Insert the third disk in %1 drive or press Ctrl-C to abort.
PAUSE
CLS
ECHO Label this disk "USER MANUAL DISK" when finished.
ECHO .
DDFMAN %1
ECHO .
CLS
ECHO To run DOCTOR DATA File on a floppy drive
ECHO system see page 7 in user manual.
ECHO .
ECHO To print the manual, ready your printer,
ECHO type PRNDOCS and press Enter.
ECHO .
ECHO Finished.
ECHO .
%1
GOTO END
:HARD
ECHO Installing DOCTOR DATA File to the %1 drive.
ECHO .
MD %1\DDFILE
DDFILE6 %1\DDFILE
SAMPLE %1\DDFILE
DDFMAN %1\DDFILE
CLS
ECHO To run DOCTOR DATA File, type
ECHO DDFILE and press Enter.
ECHO .
ECHO To print the user manual, ready your printer,
ECHO type PRNDOCS and press Enter.
ECHO .
ECHO Finished.
%1
CD\DDFILE
GOTO END
:ERROR
ECHO .
ECHO To install DOCTOR DATA File, type INSTALL and then
ECHO the drive to install to, such as INSTALL B: or INSTALL C:
ECHO .
:END